home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 27 / CDROM27.iso / share / progra / mai / Add-Ins, Adding a file to the current project next >
Encoding:
Text File  |  1997-07-31  |  274 b   |  8 lines

  1. 'Description: Adds a file to the current VB project with an Add-In 
  2.  
  3. 'Place the following code in under a command button or in a menu, etc...
  4.  
  5.         Dim AP As Object
  6.         Set AP = gobjIDEAppInst.ActiveProject
  7.         AP.AddFile (App.Path & "\files\WskSock.Bas")
  8.